home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / pm65sdk / sourcecode / pagemakerclasslibrary / commands / pprintpaperps.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-04  |  792 b   |  41 lines

  1. /*
  2.  *--- PPrintPaperPS.h -----------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 4:19 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PPrintPaperPS__
  10. #define __PPrintPaperPS__
  11.  
  12. #include "PMTypes.h"
  13.  
  14. class PPrintPaperPS
  15. {
  16.  
  17. public:
  18.  
  19.     PPrintPaperPS
  20.       (    const char *    sSize,
  21.         const char *    sSource,
  22.         long            yLength,
  23.         long            xWidth,
  24.         long            yPaperFeed,
  25.         long            xPaperMargin,
  26.         short            bOrientation,
  27.         PMBool            bCenter,
  28.         short            cTiling,
  29.         long            xOverlap,
  30.         short            cScaleType,
  31.         short            nVal );
  32.  
  33. private:
  34.  
  35.     PPrintPaperPS();
  36. };
  37.  
  38. #endif
  39.  
  40. // end of PPrintPaperPS.h
  41.